home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_03_06
/
3n06033b
< prev
next >
Wrap
Text File
|
1992-03-29
|
841b
|
30 lines
-=-=-=-=-=-=-=-=-=-=-=-=-=-=Begin Listing 5=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
/*****************************************************/
/* module.h */
/* -- Definition of the MODULEENTRY struct used by */
/* the toolhelp DLL. */
/*****************************************************/
typedef struct
{
/* Size of this structure in bytes. Must be */
/* pre-initialized by user. */
DWORD dwSize;
/* Name of the module. */
char szModule[MAX_MODULE_NAME + 1];
/* Module handle. */
HANDLE hModule;
/* Reference count. */
WORD wcUsage;
/* Location of module on disk. */
char szExePath[MAX_PATH + 1];
/* Reserved for internal use. */
WORD wNext;
} MODULEENTRY;